make clean && make CC="gcc -MMD" && cat *.d */*.d > /tmp/dep
echo Edit Makefile and bring in /tmp/dep
-VERSIONU=1_1_0_pre1206
-VERSIOND=1.1.0_pre1206
+VERSIONU=1_1_0_pre120602
+VERSIOND=1.1.0_pre120602
release:
rm -fr gpsbabel-$(VERSIOND)
cvs export -r gpsbabel_$(VERSIONU) -d gpsbabel-$(VERSIOND) gpsbabel
struct pdb_record *pdb_rec;
if (NULL == (pdb = pdb_Read(fileno(file_in)))) {
- fatal(MYNAME ": pdb_Read failed");
+ fatal(MYNAME ": pdb_Read failed\n");
}
if ((pdb->creator != MYCREATOR) || (pdb->type != MYTYPE)) {
- fatal(MYNAME ": Not a Magellan Navigator file.");
+ fatal(MYNAME ": Not a Magellan Navigator file.\n");
}
for(pdb_rec = pdb->rec_index.rec; pdb_rec; pdb_rec=pdb_rec->next) {
opdb_rec = new_Record (0, 0, ct++, vdata-(char *)rec, (const ubyte *)rec);
if (opdb_rec == NULL) {
- fatal(MYNAME ": libpdb couldn't create record");
+ fatal(MYNAME ": libpdb couldn't create record\n");
}
if (pdb_AppendRecord(opdb, opdb_rec)) {
- fatal(MYNAME ": libpdb couldn't append record");
+ fatal(MYNAME ": libpdb couldn't append record\n");
}
}
char *optarg;
if (argv[argn][0] != '-') {
- fatal ("argument '%s' not understood",argv[argn]);
+ fatal ("argument '%s' not understood\n",argv[argn]);
}
if (argv[argn][1] == '?' || argv[argn][1] == 'h') {
fname = optarg;
argn++;
if (ivecs == NULL) {
- fatal ("No valid input type specified");
+ fatal ("No valid input type specified\n");
}
ivecs->rd_init(fname, ivec_opts);
ivecs->read();